home *** CD-ROM | disk | FTP | other *** search
/ MacAddict 104 / MacAddict_104_2005-04.iso / Software / Internet & Communication / WordPress 1.2.2 freeware.dmg / wordpress / wp-rss.php < prev    next >
PHP Script  |  2004-05-22  |  2KB  |  45 lines

  1. <?php /* These first lines are the first part of a CafeLog template.
  2.          In every template you do, you got to copy them before the CafeLog 'loop' */
  3. if (! $feed) {
  4.     $blog = 1; // enter your blog's ID
  5.     $doing_rss = 1;
  6.     require('wp-blog-header.php');
  7. }
  8.  
  9. header('Content-type: text/xml', true);
  10.  
  11. ?>
  12. <?php echo '<?xml version="1.0" encoding="'.get_settings('blog_charset').'"?'.'>'; ?>
  13. <!-- generator="wordpress/<?php echo $wp_version ?>" -->
  14. <rss version="0.92">
  15.     <channel>
  16.         <title><?php bloginfo_rss('name') ?></title>
  17.         <link><?php bloginfo_rss('url') ?></link>
  18.         <description><?php bloginfo_rss('description') ?></description>
  19.     <lastBuildDate><?php echo mysql2date('D, d M Y H:i:s +0000', get_lastpostmodified('GMT'), 0); ?></lastBuildDate>
  20.         <docs>http://backend.userland.com/rss092</docs>
  21.  
  22. <?php $items_count = 0; if ($posts) { foreach ($posts as $post) { start_wp(); ?>
  23.         <item>
  24.             <title><?php the_title_rss() ?></title>
  25. <?php
  26. // we might use this in the future, but not now, that's why it's commented in PHP
  27. // so that it doesn't appear at all in the RSS
  28. //          echo "<category>"; the_category_unicode(); echo "</category>";
  29. $more = 1; 
  30. if (get_settings('rss_use_excerpt')) {
  31. ?>
  32.             <description><?php the_excerpt_rss(get_settings('rss_excerpt_length'), 2) ?></description>
  33. <?php
  34. } else { // use content
  35. ?>
  36.             <description><?php the_content_rss('', 0, '', get_settings('rss_excerpt_length'), get_settings('rss_encoded_html')) ?></description>
  37. <?php
  38. } // end else use content
  39. ?>
  40.             <link><?php permalink_single_rss() ?></link>
  41.         </item>
  42. <?php $items_count++; if (($items_count == get_settings('posts_per_rss')) && empty($m)) { break; } } } ?>
  43.     </channel>
  44. </rss>
  45.